home *** CD-ROM | disk | FTP | other *** search
/ Univers Mac Interactif 42 / Univers Mac Interactif - Issue 42.iso / Outils / Mariner 2.0.5 ƒ / Read Me < prev    next >
Text File  |  1992-11-23  |  17KB  |  216 lines

  1. Chapter 1 - Getting Started
  2. A basic spreadsheet is the electronic equivalent of a ledger book. It is divided into vertical columns and horizontal rows that intersect to form rectangles called cells. Each cell has an unique address, and is identified using the grid location. The column heading (letters A-IV) followed by the row number (1-2000) is the cell reference  number. To create a spreadsheet you enter numbers (data), labels (text) and formulas into cells. Formulas are equations that describe a mathmatical relationship between numbers. They can be as simple as 2+2 or complex logical comparisons. Input different numbers into a formula and Mariner will recalculate and display new results. Mariner allows you to add graphics, text fields (post-it notes) and charts on the spreadsheet to fully explain your data.
  3.  
  4. Selecting Cells
  5. You select a cell to tell Mariner where you want information to appear in the spreadsheet.
  6. •To select a single cell, click on it.
  7. •A block of cells is a range. To select a range of cells, click in one corner of the block and drag to the opposite corner. Mariner will scroll the window if you drag past the last row or column on screen.
  8. To quickly select a large range use the Shift key.
  9. 1. Select the first cell of the range.
  10. 2. Scroll to the end of the range.
  11. 3. Hold the Shift key down and click on the last cell of the range. All of the cells will be selected.
  12.  
  13. •To select an entire row or column of cells, click in the label headings. Drag to select more than one row or column.
  14.  
  15. Entering Information
  16. To enter information, select a cell. The active cell wil be highlighted and outlined with a solid white line. The Command Bar automatically changes when you start to type. The active cells reference number is listed below the "OK" box. Type the entry, the characters you type will appear in the cell editor below the command bar. You can click on the Command Bar icons instead of typing the character, symbol or function name.
  17. Entering Information
  18.  
  19. •There are several ways to input the information into a cell. You can click in the "OK" box or use the keyboard, pressing the "Enter" key enters the data. The "Return" key enters the data and moves the active cell down. The "Tab" key enters data and moves the active cell right. Press the return or tab and the "Shift" key to move up or left. When a range of cells is selected the active cell is outlined in white, movement of the active cell is limited by the selected cells boundries.
  20.  
  21. •To edit the content of an existing cell click on the editor to activate it.
  22.  
  23. •Mariner treats all entries the same, unlike many spreadsheets special characters are not needed to enter numbers or formulas. Mariner looks at all cell entries in this way:
  24.  
  25. 1) Is the entry a valid date? The software routine to determine a valid date is part of the system software. If you enter 1/1, January 1 of the current year will be entered and Mariner will change the cell format to a date type. Systems before 6.03 are not recommended. Dates are stored as numbers, and are based on the number of seconds before or after 12:00 AM January 1, 1904. Dates after 1904 are positive, dates  before negative.
  26.  
  27. 2) Is the entry a valid number? Exponential numbers are supported, for example 1.2E3 = 1200. To enter fractions use the '÷' character.3) Is the entry a valid formula? Use an "=" before the formula and Mariner will check the formula's syntax, if the formula is not understood an error dialog will be displayed.
  28.  
  29. 4) If all of the conditions are false the characters in the command bar editor are entered as text.
  30.  
  31. Formulas
  32. A formula is an algebraic symbol or combination of symbols separated by mathmatical operators. Symbols may be values, cell references or functions. Operators describe the mathmatical process applied to the quantities. Mariner limits formulas and data entries to 32,000 characters including spaces. These operator are supported, listed in order of precedence.
  33.     ^    exponentiation
  34.     -    negation
  35.     *, / or ÷    mult and division
  36.     + or -    addition and subtraction
  37.     ||    Text string concatenation
  38.     <, >, <>,≠, <=, >=, ≤, ≥    Logical comparison
  39.  
  40. These symbols are also used and their operation performed
  41. immediately.
  42. :    range union
  43. !    file union
  44. '%    percent operator divides current value by 100.
  45. "    used to enclose text
  46. Mariner evaluates operators with the lowest precedence first. For example, multiplication is performed before addition. Operators with equal precedence are calculated from left to right. 
  47. However,operators enclosed with parentheses will always be calculated first. For example:
  48. 2+2*2=6
  49. -2^2=-4
  50. 2*2^2=8
  51.  
  52. Text string concatenation
  53. You can also use formulas to build and minipulate text strings. Text can be inserted directly into a formula by enclosing it with quotation marks, or you can put the text into a cell and use the cell reference to access it. Use two "|" characters together to concatenate two or more pieces of text into one string. For example, if cell A1 contained the text Two strings , the formula = "Join"||" "||A1 would return  Join Two strings.
  54.  
  55. Cell References
  56. When creating a formula, Mariner allows you to refer to another cell's value using relative or absolute references. The difference is only important when you copy or move the cell to another location. 
  57.  
  58. •Absolute references always refer to the same cell, the address will never change.
  59.  
  60. •Mariner uses dollar signs to indicate an absolute reference, for example $A$52.
  61. •Relative references store a cell address based on the formula's cells position with instructions how to find it. The instructions works something like this:
  62.  
  63. 1. What is my current position?
  64. 2. Now go up 2 cells, turn right and go over 1 cell.
  65. 3. Get the value of this cell.
  66.  
  67. •When the formula is copied to another cell the reference will refer to a different cell address. You may mix references in any combination so any part of the cell or range has an absolute or relative address. In this reference ($A54) only the column address is absolute. If you copy this address and paste it in another cell, the column address will always be "A". The row address will use the same offset as the original and will be different in each row. A range reference has more combinations but the same rules apply (ex $A1:B$2 or A2:B$4).
  68. •To enter a reference into a formula you may either type the cell reference or use the cell pointing feature and click on the cell. Mariner will insert the address, if a range address is needed, drag across the cells. Hold the OptionKey down if an absolute address is needed.
  69.  
  70. Named Ranges
  71. A new feature for Mariner is the support of address names. This allows you to assign discriptive names to cells and cell ranges, using a name in a formula makes it much easier to understand. For example, you are creating a worksheet to calculate your bank balance. If you name the cells that contain the deposit, withdrawal and previous balance information, you can enter a formula such as:
  72. =Previous_Balance+deposit-withdrawal.
  73. This is much easier to understand than :
  74. = A5+B5-C5, especially to someone who didn't create the spreadsheet.
  75. To name a range, select the cells and choose Define Range... from the Option menu. Enter the name you want in the Range dialog or you can use the text in the cell to the left or above the selected cell by clicking on a checkbox. Click on "OK" and the name and cell information will be entered, when you choose that cell or range again, the address displayed in the command bar will be the your specified name.
  76.  
  77. Circular References
  78. In a spreadsheet document a circular reference is a formula that accesses a cell that has an address that refers back to the original cell, (ie. a combin- ation of cell references that has no end). Most of the time its not that simple to find, usually there is a long chain of cell references and at the end it accesses the original cell value.
  79.  
  80. •Mariner has routines to detect circular references. If one is found, it will give a warning and trace the location of the circular references.
  81.  
  82. •The automatic calculation feature will be turned off until you resolve the circular reference.
  83.  
  84. Functions
  85. Functions are predefined formulas, they produce a new value from other values called arguments. Arguments may be text, values, cell addresses or a combination of these. Function arguments MUST be enclosed in parentheses, each argument is separated by a comma. When the cell editor is activated, the command bar will change and the Functions menu inserted.
  86. • Text and Empty cells are usually treated as 0 when used as a function arguments. See the function listing for specific information because some functions ignore empty cells.
  87.  
  88. •Range addresses will access the topLeft cell of the range for the argument value, unless a range reference is required by the function.
  89.  
  90. Chapter 2 - Using Mariner
  91. Command Bar
  92.  
  93. •Mariner's Command bar allows you to point and click to choose some of the most common menu commands (see Mariner Windows-  Ch 1, figure 1).
  94.  
  95. •Pattern pallettes display the current selected patterns for fills (paint can) and lines (pen). Click on either to display a pattern menu. You may tear the menu off and drag it anywhere on screen.
  96.  
  97. •The command bar may be positioned anywhere on screen.
  98.  
  99. •The close box will quit the application.
  100.  
  101. Spreadsheet Windows
  102. • Spreadsheet windows may be divided into 4 separate panes to view different parts of a work sheet. Move the cursor over a pane control, click, hold the mouse button down and drag to the desired size.
  103.  
  104. • Click in the "Scroll Home" box to select cell A1 and scroll to the top of the worksheet.
  105.  
  106. • Hold the optionKey down and click on scrollbar arrows to scroll by printed page.
  107.  
  108. • Page breaks are displayed using a solid vertical line and a patterned horizontal line.
  109.  
  110. • Row heights and column widths are variable, click and drag between cells in the label border or select a row or column and use the size commands in the Options Menu.
  111.  
  112. Pages
  113. The page format determines how your information is printed and displayed on screen. The page size is displayed on the worksheet, the example below shows how the same page is displayed with vertical and horizontal orientation.
  114.  
  115. •The default page is letter size with the worksheet row and column labels printed and a 1/2" margin. To change this choose the Page Setup... command in the File menu. The Show Grid and Show Label commands in the Option menu affect only the screen display, page size is not changed. Changing print options, column and row sizes will recalculate the page sizes. 
  116.  
  117. • Pages are numbered vertically to the last cell entry or object, then the next page row is numbered (see the example above). If you want to know what page you are working on, enter the function PAGENUMBER into a cell.
  118.  
  119. • The content of a cell can flow into the next cell if it is empty, it will not flow into the next page.
  120.  
  121. • To specify a page break, select an entire row or column and use the Set Page Break command in the Option Menu.
  122.  
  123. Preferences
  124. The Preference dialog allows modification of Mariners startup and operation procedures. Choose the Preferences... command in the Apple menu to see the dialog.
  125. Features:
  126. • Window at startup  - choose between a new empty window, the Open dialog or no window when the application is started. When a file is opened this procedure is disabled.
  127. • WorkSheet Font and Text Size - make this font and text size the default cell and text Object format in new windows.
  128. • WorkSheet Options - with new windows show or hide labels and grids.
  129.  
  130. • Undo's - how many undo commands do you want save for each document open.
  131. • Text Transfer - when cell information is copied to the clipboard
  132. 1) copy text and values.
  133. 2) copy text and formatted values. For example, if the cell value is 10 and is displayed with currency formatting, copy $10.00 to the clipboard.
  134. 3) copy text, values and cell formulas.
  135.  
  136. The preference file must be in the same folder that the application is in, if Mariner can not find the preference file, it will ask for permission to create a new file.
  137.  
  138. Undo
  139.  
  140. Each time you change a document Mariner saves the information needed to return the document to its previous form. 
  141.  
  142. •If you make a mistake select Undo in the Edit menu to start over.  Mariner allows to save up to nine undo's.
  143.  
  144. • Each WorkSheet has separate undo data.
  145.  
  146. • To reset the number of undo records saved, open the Preferences dialog (see previous section).
  147.  
  148. • Row and column size, screen display options and object order (Bring Closer) do not create an Undo record.
  149.  
  150. Formatting
  151.  
  152. Each cell in Mariner has has its own format. For all cells the format determines :
  153. Text Font
  154. Text Size
  155. Text Style
  156. Text Alignment
  157. Cell Visibility
  158. Cell Protection
  159.  
  160. Cells values can be displayed using these formats:
  161. General (no format)
  162. Scientific Notation
  163. Percent
  164. Fixed Decimal
  165. Boolean (True or False)
  166. Date (8 different styles)
  167. Currency ($, £, L, DM, F,¥)
  168. Hidden
  169. • The active cells format will be checked √ in the
  170.    Format Menu. 
  171.  
  172. • To change a format:
  173.  1) select the cell(s) you want to change.
  174.  2) choose the new format in the Format Menu or
  175.      Command Bar.
  176.  3) Mariner will insert the format instructions
  177.      and update the screen.
  178.  
  179.  
  180. • You can specify the number of decimal places displayed. Choose Decimal Places...  in the Format menu. Mariner will display up to 16 decimal places.
  181. •Empty cells do not have format information, when you enter data into a cell Mariner will use the column format. When you change the column format, all new cell entries in the column will then use the new format. To change the column format, select the entire column by clicking in the label area, then choose a new format.
  182.  
  183. Chapter 6 - Layers and Links
  184.  
  185. Layers
  186.  
  187. Traditional spreadsheets divide data into neat rows and columns, two dimensions. Most data is not two-dimensional, which leads to less than perfect methods of organization. For example, you want to track sales data by month, product and salesperson. It is easy to slice it by product (columns) and salesperson (rows), but now you need to separate it by month and a current YTD summary would be nice too. With a 2-D spreadsheet  you could solve this problem with file links and/or a large complex worksheet, but the structure of the data will still be two-dimension. Now slice the sales data by district and region and give me a company wide summary.
  188.  
  189. A Mariner worksheet is a series of 2-D spreadsheets called Layers, organized into into a single file. Each worksheet file may have a maximum of 256 layers. To access information in a different layer you simply specify a layer number, followed by the cell reference number (ex.  1:A1). A range of layers can also be specified, the formula
  190. = SUM(1:256:A1) will total the value of cell A1 in 256 spreadsheets. The layer number of a spreadsheet is displayed in the scroll home box (see figure 1 in Getting Started). Layer references have the same features as cell references, they can use an absolute or a relative reference, or a combination of both. By using separate layers for each week, the example above can be structured to provide easy, logical access to the information needed. Each layer (spreadsheet) will use the same formulas, only the data will change.
  191.  
  192. To create, open or modify a layer, use the "Layers..." menu command in the File menu. When you open and work on a worksheet, the window for layer 1 uses the file title and will always be open. Click the close box and all windows for the worksheet will close. You may close or open any other layer individually, the window title will use the file title followed by the layer name (see example above).
  193. Any cell or range that you have named are Global, they are valid in all worksheet layers. This makes it easy to make a template and duplicate it.
  194.  
  195. Layer Command Options
  196. • New Layer - creates a new layer using format from the preference file.
  197. • Import Layer - reads a text or Mariner file and places it in a new layer. If the file contains multiple layers, all layers will be added.
  198. • Open All - will open all layers.
  199. • Open Layer - will open only the selected layer.
  200. • Rename layer - changes layer's window title.
  201. • Delete Layer - delete the layer selected in the dialog list. This command is not saved in undo.
  202. • Clone layer - create a new layer with the same row, column and print format as the selected layer.
  203. • Duplcate layer - create a copy of the selected layer.
  204. Save Layer As... - allows you to export the selected layer. You may save it in text or Mariner formats.
  205.  
  206. File Linking
  207.  
  208. You can also link a spreadsheet to another worksheet file. When you are creating the formula just click on the cell you want to access and Mariner will automatically add the link. File links must be on the stored on the same volume (disc). This allows you to make a copy of the original on a new disc and have it access the correct file.
  209.  
  210. •If you change the name of a file with the Save As... menu command, Mariner will ask if you also want to rename the links.
  211.  
  212. •The application will access the linked file only if it is open, otherwise the last accessed value is used. It is best if you open all link files so any formulas using the data can update.
  213.  
  214. •To open linked files, use the "Open Links..." menu command in the file menu. You can open files individually or all at once.
  215.  
  216.